home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 20 / 5 / DISK2058.ZIP / UNFAST.EXE / VARS.HLP < prev    next >
Text File  |  1980-01-01  |  665b  |  15 lines

  1. VARIABLE ASSIGNMENTS
  2. ====================
  3. var *= n    Multiplies var by n, storing result in var.
  4. var ++      Increments var (by 1), storing result in var.
  5. var += n    Adds n to var, storing result in var.
  6. var --      Decrements var (by 1), storing result in var.
  7. var -= n    Subtracts n from var, storing result in var.
  8. var /= n    Divides var by n, storing result in var.
  9. var = n     Gives var the value of n.
  10. var @ n     Gives the variable a new address in memory (the default address
  11.             is somewhere after the FAST code).
  12.  
  13. Note ! A variables address must be set before the variable is used anywhere.
  14.      ! n must be a constant.
  15.